home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / MRAC / Variations / rotate-f < prev    next >
Text File  |  1998-08-11  |  556b  |  19 lines

  1. rotate-f sequence
  2.  
  3. This function enables the generation of a number of symbol patterns emanating from the sequential forward rotation of a single pattern.
  4.  
  5. (rotate-f '(a b c d e f g h i j k l))
  6.  
  7. => ((a b c d e f g h i j k l)
  8.     (b c d e f g h i j k l a)
  9.     (c d e f g h i j k l a b)
  10.     (d e f g h i j k l a b c)
  11.     (e f g h i j k l a b c d)
  12.     (f g h i j k l a b c d e)
  13.     (g h i j k l a b c d e f)
  14.     (h i j k l a b c d e f g)
  15.     (i j k l a b c d e f g h)
  16.     (j k l a b c d e f g h i)
  17.     (k l a b c d e f g h i j)
  18.     (l a b c d e f g h i j k))
  19.